/**
* Tree view starts from here ...
* ------------------------------
*/
.profession-group-tree-view-container{
    position: relative;
}
.profession-group-tree-view-container ul {
    margin:0 0 0 1em; /* indentation */
    padding:0;
    list-style:none;
    color:#369;
    position:relative;
}

.profession-group-tree-view-container ul {margin-left:.5em} /* (indentation/2) */

.profession-group-tree-view-container:before,
.profession-group-tree-view-container ul:before {
    content:"";
    display:block;
    width:0;
    position:absolute;
    top:0;
    bottom:0;
    left:0;
    border-left:1px solid;
}

.profession-group-tree-view-container li {
    margin:0;
    padding:0 1.5em; /* indentation + .5em */
    line-height:2em; /* default list item's `line-height` */
    font-weight:bold;
    position:relative;
}

.profession-group-tree-view-container li:before {
    content:"";
    display:block;
    width:10px; /* same with indentation */
    height:0;
    border-top:1px solid;
    margin-top:-1px; /* border top width */
    position:absolute;
    top:1em; /* (line-height/2) */
    left:0;
}

.profession-group-tree-view-container li:last-child:before {
    background:none; /* same with body background */
    height:auto;
    top:1em; /* (line-height/2) */
    bottom:0;
}

/* reset first styles */
.profession-group-tree-view-container > ul{
    margin: 0;
}
.profession-group-tree-view-container > ul > li{

}

.parent-professions-container span{
    transition: all .4s;
}
.parent-professions-container-text{
    cursor: pointer;
}
.parent-professions-container.open span{
    color: #dc3545;
    font-size: 0.9rem;
    transition: all .5s;
}
.profession-group-tree-view-action{
    margin-bottom: 0;
    padding: 0;
    border: 0;
    transition: all 0.65s;
}
.profession-group-tree-view-action.show{
    font-weight: bold;
    font-size: 0.8rem;
    display: inline-block;
    padding: 0.2rem 1.3em;
    border: 1px solid;
    margin-bottom: 5px;
    color: #dc3545;
    border-color: #dc3545;
    border-radius: 14px;
    transition: all 1s;
}
/* MEDIA MIN */

@media screen and (min-width: 1600px) {
    .profession-group-tree-view-container > ul {
        column-count:2;
        -moz-column-count:2;
        -webkit-column-count:2;
    }
}

